Contents:

1. design_example_list (or _map) - handout and video cover this. This is the Blob System
   Should use this approach for you project. Uses MVC. Has one tab.
2. student_data - has example of all common Gui controls. 
   Has second tab with nothing except a button to return to first tab. 
   Does NOT use MVC.
3. order_menu - has sample of a few controls. Has second tab with a 
   hard-coded graph that can be visualized as a line, bar, or scatter plot. 
   Does NOT use MVC.

Directions:

1. Run Eclipse, and create a new JavaFX Project
2. Drag the design_example_map folder into the src node 
    (or design_example_list, or order_menu, or student_data)
3. Probably have to modify module-info.java. If use all folders:

module BlobSystem {
	requires javafx.controls;
	requires junit;
	requires org.junit.jupiter.api;
	
	opens design_example_list to javafx.graphics, javafx.fxml;
	opens design_example_map to javafx.graphics, javafx.fxml;
	opens order_menu to javafx.graphics, javafx.fxml;
	opens student_data to javafx.graphics, javafx.fxml;
}

4. If this doesn't work, see CS 1302, Lab 15 - Eclipse & JavaFX

